Learn R Programming

GISTools (version 0.7-4)

Kernel Density Estimates From Points: Kernel Density Estimates

Description

Given a set of points, a bandwidth, a grid density and a frame, produce a kernel density estimate

Usage

kde.points(pts,h,n=200,lims=NULL)

Arguments

pts
A SpatialPoints or SpatialPointsDataFrame object.
h
A real number - the bandwidth of the KDE
n
An integer, the output grid density - ie result is nxn grid
lims
A spatial object - the KDE grid will cover this, if provided

Value

A SpatialPixelsDataFrame containing the KDE.

Examples

Run this code
# Data for New Haven to use in example
data(newhaven)
# Do the KDE
breach.dens = kde.points(breach,lims=tracts)
# Plot the result
level.plot(breach.dens)
# Block out the part outside the study area
masker = poly.outer(breach.dens,tracts,extend=100); add.masking(masker)
# Plot census tract boundaries
plot(tracts,add=TRUE)

Run the code above in your browser using DataLab